home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network Login Picture.xpl < prev    next >
Text File  |  2001-04-13  |  1KB  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="3"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows 9x/ME\60) Before Login Window"
  5. "UIPATH 2"="Startup/Shutdown\Startup\Windows NT/2K/XP\30) Before Login Window"
  6. "NAME"="Background: Wallpaper"
  7. "VERSION"="1.03"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Picture 1"
  10. "DATA 1"="Bitmap picturs (*.BMP)|*.bmp"
  11. "DESCRIPTION 1"="This plug-in can be used to change the pictures that is displayed before any user is able to login (means: before the login window appears)."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16. "COMMENT 2"="Thanks to CptSiskoX for this setting."
  17.  
  18.  
  19. sPath="HKUS\.DEFAULT\Control Panel\Desktop\Wallpaper"
  20. Sub Plugin_Initialize 
  21.  s=RegReadValue(sPath)
  22.  SetUIElement 1,s 
  23. End Sub
  24.  
  25. Sub Plugin_CheckData(ElementIndex)
  26. End Sub
  27.  
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  s=GetUIElement(1)
  30.  if len(s)>0 then
  31.     Call RegWriteValue(sPath,s,1)
  32.  end if
  33.  
  34.  Call Logoff
  35.  Call MsgInformation("The new logo has been set.")
  36. End Sub
  37.  
  38. Sub Plugin_Terminate 
  39. End Sub
  40.  
  41.